home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / ssymm.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  421 b   |  15 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_ssymm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side,
  7.          const enum CBLAS_UPLO Uplo, const int M, const int N,
  8.          const float alpha, const float *A, const int lda, const float *B,
  9.          const int ldb, const float beta, float *C, const int ldc)
  10. {
  11. #define BASE float
  12. #include "source_symm_r.h"
  13. #undef BASE
  14. }
  15.